f15b8ed7ded2c5020a19a6da57fc9106feae06ab,tests/frontend/org/voltdb/regressionsuites/LocalCluster.java,LocalCluster,compileWithAdminMode,#VoltProjectBuilder#number#boolean#,432

Before Change


    @Override
    public boolean compileWithAdminMode(VoltProjectBuilder builder, int adminPort, boolean adminOnStartup)
    {
        if (m_compiled) {
            return true;
        }
        m_baseAdminPort = adminPort;
        m_compiled = builder.compile(m_jarFileName, m_siteCount, m_hostCount, m_replication,
                                     m_baseAdminPort, adminOnStartup);
        m_pathToDeployment = builder.getPathToDeployment();
        m_pathToVoltRoot = builder.getPathToVoltRoot();

        return m_compiled;
    }

After Change


    }

    @Override
    public boolean compileWithAdminMode(VoltProjectBuilder builder, int adminPort, boolean adminOnStartup)
    {
        if (!m_compiled) {
            m_compiled = builder.compile(templateCmdLine.jarFileName(), m_siteCount, m_hostCount, m_kfactor,
                    adminPort, adminOnStartup);
            templateCmdLine.pathToDeployment(builder.getPathToDeployment());
        }
        return m_compiled;
    }